home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat1 / setbpt.1 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. setbpt(1)                      Scilab Function                      setbpt(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   setbpt - setting breakpoints
  13.  
  14. CALLING SEQUENCE
  15.   setbpt(macro-name [,line-num])
  16.  
  17. PARAMETERS
  18.  
  19.   macro-name
  20.             : string
  21.  
  22.   line-num  : integer
  23.  
  24. DESCRIPTION
  25.   setbpt interactively inserts a breakpoint in the line number line-num
  26.   (default value is 1) of the function  macro-name
  27.  
  28.   When reaching the breakpoint, Scilab evaluates the specified line , prints
  29.   the number of the line and the name of the function. If the function is not
  30.   compiled ( see comp ) the line is printed on the screen.  Then Scilab goes
  31.   into a pause mode in which the user can check current values. The pause is
  32.   exited with resume or abort.  Redefining the function does not clear the
  33.   breakpoints, the user must explicitly delete breakpoints using delbpt. The
  34.   maximum number of functions with breakpoints enabled must be less than 20
  35.   and the maximum number of breakpoints is set to 100.
  36.  
  37. SEE ALSO
  38.   delbpt, dispbpt, pause, resume
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.